home *** CD-ROM | disk | FTP | other *** search
- #ifndef __FILE_SYSTEM_H_
- #define __FILE_SYSTEM_H_
-
- #include "textmenu.h"
-
- #include <dir.h>
-
- extern void get_dir();
-
- class FileSystem : public TextMenu
- {
- protected:
- int redraw;
- char* reserv; // the start path
- int res_disk;
- public:
- FileSystem(rect coords = rect(12, 9, 48, 18));
- virtual ~FileSystem() { delete reserv; }
- virtual void show();
- virtual void exe(int act = 0);
- };
-
- #endif __FILE_SYSTEM_H_